body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("https://briwolfie.neocities.org/Index%20Assets/pink2.jpg") center center / cover no-repeat fixed;
    background-color: #1c1b2b;
    color: #fff1f6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.page-layout {
    width: min(95%, 1500px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: stretch;
}

.sidebar-left,
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.main-column {
    min-width: 0;
    display: flex;
}

.content-box {
    position: relative;
    width: 100%;
    padding: 20px;
    border: 2px solid #fdc0cb;
    border-radius: 10px;
    background: rgba(24, 20, 40, 0.78);
    box-shadow: 0 0 14px rgba(253, 192, 203, 0.18);
}

.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 70px 10px;
    border-bottom: 2px solid rgba(253, 192, 203, 0.35);
}

.header h1 {
    margin: 0 0 10px;
    color: #fdc0cb;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(253, 192, 203, 0.2);
}

.header p {
    margin: 0;
    color: #fff1f6;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.5;
}

.home-button {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 52px;
    height: 52px;
    background: rgba(24, 20, 40, 0.92);
    border: 2px solid #fdc0cb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.45);
    z-index: 2;
    transition: 0.2s ease;
    text-decoration: none;
}

.home-button:hover {
    background: rgba(40, 30, 60, 0.96);
    box-shadow: 0 0 14px rgba(253, 192, 203, 0.38);
    transform: translateY(-2px);
}

.home-button img {
    width: 70%;
    height: auto;
    display: block;
}

.side-panel {
    border: 2px solid #fdc0cb;
    background: rgba(24, 20, 40, 0.82);
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.22);
}

.panel-title {
    padding: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    text-align: center;
    color: #fdc0cb;
    border-bottom: 2px solid #fdc0cb;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.panel-content {
    padding: 18px;
    text-align: center;
    min-height: 120px;
    color: #fff1f6;
    font-weight: bold;
    line-height: 1.55;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.side-link {
    display: block;
    width: 100%;
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: #fdc0cb;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: bold;
    border-top: 2px solid #fdc0cb;
    background: rgba(253, 192, 203, 0.12);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease;
}

.side-link:hover {
    background: rgba(253, 192, 203, 0.22);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.checklist-card {
    background: rgba(255, 241, 246, 0.82);
    border: 2px solid #fdc0cb;
    padding: 18px;
    min-width: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(253, 192, 203, 0.08);
}

.checklist-card h2 {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(253, 192, 203, 0.8);
    color: #5a3244;
    font-size: clamp(20px, 2vw, 28px);
    text-align: center;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.38);
    border: 2px solid rgba(253, 192, 203, 0.95);
    border-radius: 10px;
    color: black;
    font-size: 16px;
    line-height: 1.4;
    transition: 0.2s ease;
    cursor: pointer;
}

.check-item:hover {
    background: rgba(253, 192, 203, 0.3);
    transform: translateY(-1px);
}

.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #d96d9a;
    flex-shrink: 0;
    cursor: pointer;
}

.check-item span {
    flex: 1;
}

.check-item input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .page-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 20px 0;
    }

    .sidebar-left,
    .sidebar-right,
    .main-column {
        width: 100%;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 60px 0 10px;
    }

    .home-button {
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 600px) {
    .content-box,
    .side-panel {
        padding-left: 12px;
        padding-right: 12px;
    }

    .checklist-card {
        padding: 12px;
    }

    .check-item {
        padding: 10px 12px;
        font-size: 15px;
    }
}